home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / CATAGING / VCRDBASE.LZH / NOTES.TXT < prev    next >
Text File  |  1986-04-24  |  2KB  |  43 lines

  1. Program Name and Version: VCRDBASE
  2.  
  3. Author Name: Doctor Disk Drive
  4. Address:        Drive Industries
  5.                 4104 Garrett Place
  6.                 Colorado Springs, CO  80907
  7.  
  8. Telephone Number:
  9.  
  10. Program Classification: dbms
  11.  
  12. Suggested Donation: $10
  13.  
  14. Program Description: VCRDBASE is a data base written in Turbo Pascal for the IBM
  15. PC. It can be used to keep record of a personal video library by the reference
  16. of the following data elements:
  17.  
  18.                 Movie Name              String[20]
  19.                 Movie Publisher         String[20]
  20.                 Movie Star              String[20]
  21.                 Movie Style             (Horror,Comedy,Action,Drama,Misc.)
  22.                 Movie Sub-Style         (Horror,Comedy,Action,Drama,None)
  23.                 Tape Number             Integer
  24.                 Counter Starter Number  Integer
  25.                 Counter End Number      Integer
  26.                 Tape Speed              (S,L,E)
  27.                 Hard Copy Verification  Boolean
  28.  
  29. VCRDBASE is quite unique in that it uses a Linked List data structure for record
  30. management and sorting.  In this data structure, the Header file, HEADER.DAT,
  31. contains the record number of the first alphabetical movie.  That movie (the
  32. first alphabetical) contains a forward link and a backward link.  The forward
  33. link contains the record number of the next alphabetical movie and the backward
  34. link contains the record number of the preceding record (or in this case, 0
  35. because there is no previous record) Adds are made by placing the record in the
  36. next available file position, and then searching where it belongs among the
  37. records, and adjusting the links to include the new record.  It will properly
  38. alphabetize all your movies and is remarkably fast in sorting compared to many
  39. sorting techniques.  The data file, DATAFILE.DAT, contains all the movie records
  40. and neither of the files should be renamed, or physically edited because they
  41. are both random access files that are accessed by key only.
  42.  
  43.